home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / glibc108.zip / glibc108 / hurd / hurdid.c < prev    next >
C/C++ Source or Header  |  1994-04-04  |  2KB  |  74 lines

  1. /* Copyright (C) 1993, 1994 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3.  
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Library General Public License as
  6. published by the Free Software Foundation; either version 2 of the
  7. License, or (at your option) any later version.
  8.  
  9. The GNU C Library is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12. Library General Public License for more details.
  13.  
  14. You should have received a copy of the GNU Library General Public
  15. License along with the GNU C Library; see the file COPYING.LIB.  If
  16. not, write to the Free Software Foundation, Inc., 675 Mass Ave,
  17. Cambridge, MA 02139, USA.  */
  18.  
  19. #include <hurd.h>
  20. #include <hurd/id.h>
  21. #include <gnu-stabs.h>
  22.  
  23. struct hurd_id_data _hurd_id /* = { lock: MUTEX_INITIALIZER } */;
  24.  
  25.  
  26. /* Check that _hurd_id.{gen,aux} are valid and update them if not.
  27.    Expects _hurd_id.lock to be held and does not release it.  */
  28.  
  29. error_t
  30. _hurd_check_ids (void)
  31. {
  32.   if (! _hurd_id.valid)
  33.     {
  34.       error_t err;
  35.       inline void dealloc (__typeof (_hurd_id.gen) *p)
  36.     {
  37.       if (p->uids)
  38.         {
  39.           __vm_deallocate (__mach_task_self (),
  40.                    (vm_address_t) p->uids,
  41.                    p->nuids * sizeof (uid_t));
  42.           p->uids = NULL;
  43.         }
  44.       if (p->gids)
  45.         {
  46.           __vm_deallocate (__mach_task_self (),
  47.                    (vm_address_t) p->gids,
  48.                    p->ngids * sizeof (gid_t));
  49.           p->gids = NULL;
  50.         }
  51.     }
  52.  
  53.       dealloc (&_hurd_id.gen);
  54.       dealloc (&_hurd_id.aux);
  55.       if (_hurd_id.rid_auth)
  56.     {
  57.       __mach_port_deallocate (__mach_task_self (), _hurd_id.rid_auth);
  58.       _hurd_id.rid_auth = MACH_PORT_NULL;
  59.     }
  60.  
  61.       if (err = __USEPORT (AUTH, __auth_getids
  62.                (port,
  63.                 &_hurd_id.gen.uids, &_hurd_id.gen.nuids,
  64.                 &_hurd_id.aux.uids, &_hurd_id.aux.nuids,
  65.                 &_hurd_id.gen.gids, &_hurd_id.gen.ngids,
  66.                 &_hurd_id.aux.gids, &_hurd_id.aux.ngids)))
  67.     return err;
  68.  
  69.       _hurd_id.valid = 1;
  70.     }
  71.  
  72.   return 0;
  73. }
  74.